home *** CD-ROM | disk | FTP | other *** search
/ Fun & Games 2 (Canada) / Fun & Games CD-ROM (Canada).bin / games / disk150 / ls.doc < prev    next >
Encoding:
Text File  |  1989-06-23  |  2.5 KB  |  123 lines

  1. Letter Shift - Documentation
  2.  
  3.  
  4. Programmed by Konstantin Articus
  5.               Gross strasse 21
  6.               2250 Husum
  7.               West Germany
  8.  
  9.  
  10. This game is Public Domain.
  11. You may change it for your own purpose,
  12. but please share it unmodified.
  13.  
  14. Hardware requirements: none
  15. DOS: tested with 3.2 but it should also work with other DOS versions
  16. Pascal: Turbo Pascal 4.0 -
  17.         with little changes it also works on Turbo 3.0
  18.  
  19. Files on disk:
  20.  
  21. LS.DOC Documentation for Letter Shift
  22. LS.EXE Compiled version of Letter Shift
  23. LS.PAS Source code of Letter Shift
  24.  
  25.  
  26. optional parameters:
  27.  
  28. F for faster shuffling - a loop slows the speed down so that you can
  29.                          see the shuffling. If you don't want to see that
  30.                          or if your PC is too slow. Use the F option.
  31.  
  32. M for monochrom monitor - I used colours and shadows to beautify the
  33.                           program, but on some machines it is
  34.                           more beautiful without colours
  35.  
  36.  
  37. Letter Shift is a game (not only) for children. The aim of the game is
  38. to put unarranged letters in alphabetical order.
  39.  
  40. It seems simple, but it can be very difficult. This depends on how often
  41. the letters are shuffled. The most difficult game results from an input
  42. between 30 to 50.
  43.  
  44. How to move the letters:
  45. One field on the board is emtpy. A neighbouring letter (vertical
  46. or horizontal) can be set on the empty field by typing it in.
  47. The computer doesn't allow non-existing or non-neighbouring letters
  48. to be moved.
  49.  
  50.  
  51. Example:
  52.  
  53. Board: (3 times shuffled)
  54.  
  55.     ╔═══╦═══╦═══╦═══╗
  56.     ║ A ║ B ║ C ║ D ║
  57.     ╠═══╬═══╬═══╬═══╣
  58.     ║ E ║ F ║ G ║ H ║
  59.     ╠═══╬═══╬═══╬═══╣
  60.     ║ I ║ J ║ L ║   ║
  61.     ╠═══╬═══╬═══╬═══╣
  62.     ║ M ║ N ║ K ║ O ║
  63.     ╚═══╩═══╩═══╩═══╝
  64.  
  65. Input: L
  66.  
  67. Board:
  68.  
  69.     ╔═══╦═══╦═══╦═══╗
  70.     ║ A ║ B ║ C ║ D ║
  71.     ╠═══╬═══╬═══╬═══╣
  72.     ║ E ║ F ║ G ║ H ║
  73.     ╠═══╬═══╬═══╬═══╣
  74.     ║ I ║ J ║   ║ L ║
  75.     ╠═══╬═══╬═══╬═══╣
  76.     ║ M ║ N ║ K ║ O ║
  77.     ╚═══╩═══╩═══╩═══╝
  78.  
  79. Input: K
  80.  
  81.  
  82. Board:
  83.  
  84.     ╔═══╦═══╦═══╦═══╗
  85.     ║ A ║ B ║ C ║ D ║
  86.     ╠═══╬═══╬═══╬═══╣
  87.     ║ E ║ F ║ G ║ H ║
  88.     ╠═══╬═══╬═══╬═══╣
  89.     ║ I ║ J ║ K ║ L ║
  90.     ╠═══╬═══╬═══╬═══╣
  91.     ║ M ║ N ║   ║ O ║
  92.     ╚═══╩═══╩═══╩═══╝
  93.  
  94. Input: O
  95.  
  96. Board:
  97.  
  98.     ╔═══╦═══╦═══╦═══╗
  99.     ║ A ║ B ║ C ║ D ║
  100.     ╠═══╬═══╬═══╬═══╣
  101.     ║ E ║ F ║ G ║ H ║
  102.     ╠═══╬═══╬═══╬═══╣
  103.     ║ I ║ J ║ K ║ L ║
  104.     ╠═══╬═══╬═══╬═══╣
  105.     ║ M ║ N ║ O ║   ║  <- this field must be empty !
  106.     ╚═══╩═══╩═══╩═══╝
  107.  
  108. Now the riddle is solved !
  109.  
  110. Enjoy
  111.   Letter Shift !
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.